home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.xa;
-
- import java.util.EventObject;
- import javax.swing.JList;
- import javax.swing.event.ListSelectionEvent;
- import javax.swing.event.ListSelectionListener;
-
- class CellDialog$1 implements ListSelectionListener {
- // $FF: synthetic field
- final CellDialog this$0;
-
- public void valueChanged(ListSelectionEvent var1) {
- if (!var1.getValueIsAdjusting()) {
- JList var2 = (JList)((EventObject)var1).getSource();
- int var3 = var2.getSelectedIndex();
- if (var3 >= 0) {
- String var4 = (String)var2.getModel().getElementAt(var3);
- this.this$0.insertName(var4);
- var2.clearSelection();
- this.this$0.editor.requestFocus();
- }
- }
- }
-
- CellDialog$1(CellDialog var1) {
- this.this$0 = var1;
- }
- }
-